home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / prgtools / prtsut53.zip / SU1CP_16.ZIP / CBSUITE.PAS < prev    next >
Pascal/Delphi Source File  |  1997-02-02  |  1KB  |  81 lines

  1. {
  2.   CBSuite - Components
  3.  
  4.   Copyright (c), 1996, Calitz Bros.   All rights reserved
  5. }
  6.  
  7. unit CBSuite;
  8.  
  9.  
  10. interface
  11.  
  12. uses
  13.   Classes,
  14.   DsgnIntf,
  15.   Dialogs,
  16.   SysUtils,
  17.  
  18.   PrnWin,
  19.   DBPrnWin,
  20.   VRuler,
  21.   HRuler,
  22.   Totals,
  23.   PrnGridR,
  24.   Prnfile,
  25.   PrMemo,
  26.   FileRead,
  27.   cb_grid,
  28.   CB_Types,
  29.   CB_Gdi,
  30.   cb_lab,
  31.   CB_MFunc,
  32.   FuncsDb,
  33.   PrintWiz,
  34.   cb_grfun,
  35.   cb_dbgr,
  36.   cb_graph,
  37.   AddIt,
  38.   cbband,
  39.   cbreport,
  40.   cb_calc,
  41.   cbSystem,
  42.   cbdetban,
  43.   cbsubdet,
  44.   CBLabel,
  45.   CBAbout;
  46.  
  47.  
  48.  
  49.  
  50. procedure Register;
  51.  
  52. implementation
  53.  
  54. {$R PRINTIT.DCR}
  55. {$R REPORTIT.DCR}
  56. {$R GRAPHIT.DCR}
  57. {$R BANDIT.DCR}
  58.  
  59.  
  60.   procedure Register;
  61.  
  62.   begin
  63.     RegisterComponents('CBSuite',[TDBPrintWin, TPrintWin, THRuler, TVRuler,
  64.      TShowTotal]);
  65.     RegisterComponents('CBSuite',[TPrintGridReport,TPrintFile,
  66.      TPrintMemo]);
  67.     RegisterComponents('CBSuite',[TCB_SortGrid]);
  68.     RegisterComponents('CBSuite',[TCB_Graph, TCB_DBGraph, TCB_Label]);
  69.     RegisterComponents('CBSuite',[TCBReport, TCBBand,TCBDetailBand, TCBSubDetBand,
  70.         TCBCalc, TCBSystem, TCBLabelBand]);
  71.  
  72.  
  73.     RegisterComponentEditor(TPrintWin, TCBEditor);
  74.     RegisterComponentEditor(TPrintGridReport, TCBEditor);
  75.     RegisterComponentEditor(TCBReport, TCBRepEditor);
  76.  
  77.   end;
  78.  
  79.  
  80. end.
  81.